html {
    height: 100vh;
    width: 100vw;
  	overflow: hidden;
}
body {
	background: url("../pictures/homeSmall.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
	width: 100%;
  	display: flex;
}

h3 {
    color: rgb(176 219 251);
}

#content {
	text-align: center;
}

body h1, h2, h3, h4, h5, button, h6, .jumbotron .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Abril Fatface', cursive;
}

img {
	vertical-align: text-top;
	height: 36px;
}

.navbar-brand img {
	display: inline-block;
}
.name-highlight {
	color: #a4912e;
}
.jumbotron h1, .jumbotron .h1 {
    color: rgb(169, 185, 197);
}
.jumbotron {
	background-color: rgba(13, 14, 14,.6);
	max-height: min-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
  	align-items: center;
	border-radius: 3px;
	padding: 8%;
}
hr {
	border-top: 2px solid #ffd32f;
	margin: 4%;
	width: 68%;
}
.landing-btn {
	text-decoration: none;
}

#toggle-btn {
	width: fit-content;
  	margin: 3px;
}

.word-effect {
    color: #a4912e;
}

a:link {
  text-decoration: none;
}

/* inner wrapper after body - styling */
.container {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
  	align-self: center;
}

.container .chrome {
	padding: 10%;
}

.animate-character {
  	background-image: linear-gradient( -225deg, #ffc107 0%, #b1b313 29%, #b5c91e 67%, #fff800 100% );
	background-size: auto auto;
	background-clip: border-box;
	background-size: 200% auto;
	color: #fff;
	background-clip: text;
	text-fill-color: transparent;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: textclip 2s linear infinite;
	display: inline-block;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}

/* allows for pop effect */
.pop-effect {
	display: inline-block;
}

/* Define pop animation for h3 element*/ 

.jumbotron > h3 > .pop-effect {  
	animation: pop 0.5s 1; 
	animation-fill-mode: forwards;
	animation-timing-function: ease-in-out;
}

button[type="button"] {
	margin: 10px;
	animation: pop 1s 1;
}

@keyframes pop { 
	0% { transform: scale(1); } 
	50% { transform: scale(1.2); } 
	100% { transform: scale(1); } 
}

h3:nth-child(1) {  animation-delay: 0s; }
h3:nth-child(2) {  animation-delay: 0.2s; }
h3:nth-child(3) {  animation-delay: 0.4s; }
h3:nth-child(4) {  animation-delay: 0.6s; }
h3:nth-child(5) {  animation-delay: 0.8s; }
h3:nth-child(6) {  animation-delay: 1s; }
h3:nth-child(7) {  animation-delay: 1.2s; }
h3:nth-child(8) {  animation-delay: 1.4s; }
h3:nth-child(9) {  animation-delay: 1.6s; }
h3:nth-child(10) {  animation-delay: 1.8s; }
h3:nth-child(11) {  animation-delay: 2s; }
h3:nth-child(12) {  animation-delay: 2.2s; }
h3:nth-child(13) {  animation-delay: 2.4s; }


@media screen and (min-width: 700px) {
	body {
		background-image: url("../pictures/homeBackgroundMedium.jpg");
	}
}

@media screen and (min-height: 700px) {
	.container {
		height: 80%;
	}
}

@media screen and (max-width: 550px) {
	body {
		background-image: url("../pictures/portraitSmall.jpg");
	}
}

@media screen and (min-height: 900px) {
	.container {
		height: 60%;
	}
}

@media screen and (min-width: 1200px) {
  .jumbotron {
  	background-color: rgba(13, 14, 14,.9);
    border-radius: 14px 14px 167px 130px;
    border-radius: 21px;
  }
}